home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cchh01.arc / ASCII.H < prev    next >
Text File  |  1986-03-14  |  329b  |  21 lines

  1.  
  2. /**
  3. *
  4. *     ASCII.H     names of commonly used characters
  5. *
  6. **/
  7.  
  8. #define  NULL     '\0'
  9. #define  CTRL_C   '\x03'
  10. #define  BELL     '\x07'
  11. #define  BS       '\b'
  12. #define  TAB      '\t'
  13. #define  LF       '\x0A'
  14. #define  CR       '\r'
  15. #define  ESC      '\x1B'
  16. #define  SPACE    ' '
  17. #define  ADEL     '\x7F'
  18.  
  19.  
  20.  
  21.